home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / keyb / takecm31.zip / TAKETEST.DOC < prev   
Text File  |  1989-04-04  |  6KB  |  101 lines

  1.           **********************************************************
  2.           *                                                        *
  3.           *            T  A  K  E     C  O  M  M  A  N  D          *
  4.           *                                                        *
  5.           *            (C) Copywrite 1986-89  Release 3.00         *
  6.           *                                                        *
  7.           *    If you find this program useful or use it on a      *
  8.           *    regular basis you are asked to register for $10.    *
  9.           *    For your registration you will recieve the latest   *
  10.           *    release and be notified of any new releases.        *
  11.           *                                                        *
  12.           *       Cary Kolker            SYSOP Niu Connection      *
  13.           *       501 Suburban Apts.     Data  (815)753-1800       *
  14.           *       De Kalb, IL 60115      Voice (815)753-9515       *
  15.           *                              Nodes 1&2 3,12,2400       *
  16.           *                                                        *
  17.           **********************************************************
  18.  
  19.  
  20.          This TSR will provide you with the ability to bridge a gap that
  21.          I feel was left open by the designers of DOS.  I have used a number
  22.          of main-frame and mini-computers and all of these systems have
  23.          the ability for you to define your commands as a series of
  24.          commands.  I have spent some time recently adding a number of
  25.          features and I hope that you will find it as indespensiable
  26.          as I have.  With your support of $10 I will send you the latest
  27.          version and keep you informed of any further versions.  I would
  28.          appreciate any and all comments or suggestions and if you like
  29.          I can customize it for your needs. ie. I can remove the resident
  30.          help screen (which comsumes 1280 bytes) or I can increase or 
  31.          decrease the number of allowable symbols (each symbol requires
  32.          144 bytes).
  33.  
  34.          Other than the resident help screen (which defines most commands)
  35.          I must tell you about all the features of the symbols.
  36.  
  37.       1).  The basic symbol definition is:  N = CLS
  38.               This is defined by entering:  DF N = CLS
  39.  
  40.       2).  The next feature is the ability to use positional parameter
  41.            substitution similar to the DOS batch files.
  42.               LIST = TYPE %1
  43.            You may use parameters from %1 thru %9, each parameter is
  44.            seperated by a space. (the next version will allow you to
  45.            use parameters with imbedded spaces.
  46.  
  47.       3).  Finally you may define a symbol as a series of DOS commands
  48.            by seperating each command for the symbol by double tildes "~~".
  49.            I removed the use of the character 217 as the seperator because
  50.            of conflicts with DesqView (Tm. QuarterDeck Office Systems.).
  51.  
  52.              ie.  MAKECOM = MASM %1,,NUL;~~LINK %1;~~EXE2BIN %1.EXE %1.COM
  53.  
  54.  
  55.            If you must terminate the command chaining sequence you must
  56.            use the CTRL-BREAK key,  a CTRL-C will not stop it but it will
  57.            abort the current command.
  58.  
  59.  
  60.       If you do use this regularly I would really apperciate your support
  61.       so that I may further advance the functionality of this program.
  62.       This program was completely written in assembler and has been debuged
  63.       as completely as many years of testing and regular use by myself will
  64.       provide.  The only thing which I consider a problem is that when used
  65.       with AT class or above computers you will have to press enter once
  66.       after loading the program otherwise if the next command after loading
  67.       is a symbol then it will not be recognized.
  68.  
  69.       ONE IMPORTANT NOTE:  This does not function in DOS batch files and 
  70.                            symbols substitution only will take place at
  71.                            the DOS level.  ie.  If you are in WORDSTAR
  72.                            and want to shell out to run a symbol you 
  73.                            must enter for the command to run from WS
  74.                            "COMMAND", this will load a secondary command 
  75.                            processor and then you may use symbols.  After
  76.                            you are done then just enter "EXIT" to return
  77.                            to WORDSTAR.
  78.  
  79.                            Your symbol file may be loaded from a directory
  80.                            or filename other than the default by adding the
  81.                            path and filename to the command line when loading
  82.                            TAKECOMM into memory.  The default path and file-
  83.                            name is C:\SYMBOLS.SAV.
  84.  
  85.       New for version 3.00:
  86.  
  87.                  Command chaining character was changed to a double tilde
  88.                  to avoid conflict with DesqView.
  89.  
  90.                  Command was added to allow TAKECOMM to be removed from
  91.                  memory given it was the last TSR loaded.
  92.  
  93.  
  94.       Coming Soon in next release:
  95.  
  96.                  Wildcards will be allowed for the readonly and readwrite
  97.                  commands.  And if I get the time I will try to write a
  98.                  move file(s) and if I have alot of time or incentive a
  99.                  move directory(s) command.
  100.  
  101.